home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
smaltalk
/
manchest.lha
/
MANCHESTER
/
manchester
/
4.1
/
Project-closing.st
< prev
next >
Wrap
Text File
|
1993-07-24
|
1KB
|
35 lines
" NAME Project-closing
AUTHOR miw@cs.man.ac.uk (Mario Wolczko)
FUNCTION Warn if closing project will discard change set
ST-VERSION 4.1
PREREQUISITES
CONFLICTS Project>changeRequest
DISTRIBUTION world
VERSION 1
DATE 1993
SUMMARY
Up to 4.1, if you tried to close a project with a non-empty change
set, you were asked to confirm. For some reason this was removed from
4.1. This puts it back.
Mario Wolczko
Dept. of Computer Science Internet: mario@cs.man.ac.uk
The University uucp: uknet!!man.cs!!mario
Manchester M13 9PL JANET: mario@uk.ac.man.cs
U.K. Tel: +44-61-275 6146 (FAX: 6236)
______the mushroom project___________________________________
"
'From Objectworks\Smalltalk(R), Release 4.1 of 15 April 1992 on 24 June 1993 at 6:57:16 pm'!
!Project methodsFor: 'changing'!
changeRequest
^super changeRequest
and: [projectChangeSet isEmpty
or: [DialogView confirm: 'Change set is not empty. Are you
certain that you want to close?']]! !